

class BinaryNode
{
    BinaryNode( Comparable theElement )
    {
        element = theElement;
        left = right = null;
    }

    Comparable element;
    BinaryNode left;
    BinaryNode right;
}
